/* --- Estilo del cuerpo letra color y contenedores --- */

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}


/* --- Estilos del Encabezado y logo es igual a las demas paginas --- */

header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    position: sticky;
    /* Hacemos el encabezado fijo en la parte superior */
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 40px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header nav ul li a:hover {
    background-color: #e8f0fe;
    color: #1976d2;
}

/* --- Estilos del carrusel de imagenes --- */
.hero {
    padding: 60px 0;
    background-color: #e8f0fe;
}

.carousel {
    max-width: 900px;
    margin: 0 auto;
}

.carousel img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* --- Estilos de Secciones Generales --- */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1976d2;
}

/* --- Estilos de la Seccion "Contactenos" --- */
.contacto-content {
    text-align: center;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contacto-content h2 {
    color: #333;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contacto-content p {
    color: #555;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contacto-acciones {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-contacto {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.btn-contacto:first-child {
    background-color: #007bff;
    color: #fff;
}

.btn-contacto:last-child {
    background-color: #28a745;
    color: #fff;
}

.btn-contacto:hover {
    transform: translateY(-5px);
}


/* --- Estilos del Pie de Pagina Igual que todas las otras paginas --- */
footer {
    background-color: #e0e0e0;
    color: #333;
    text-align: center;
    padding: 20px 0;
}